home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / encodings / tis_620.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  2KB  |  41 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. ''' Python Character Mapping Codec for TIS-620.
  5.  
  6.     According to
  7.     ftp://ftp.unicode.org/Public/MAPPINGS/ISO8859/8859-11.TXT the
  8.     TIS-620 is the identical to ISO_8859-11 with the 0xA0 (no-break
  9.     space) mapping removed.
  10.  
  11. '''
  12. import codecs
  13. from encodings.iso8859_11 import decoding_map
  14.  
  15. class Codec(codecs.Codec):
  16.     
  17.     def encode(self, input, errors = 'strict'):
  18.         return codecs.charmap_encode(input, errors, encoding_map)
  19.  
  20.     
  21.     def decode(self, input, errors = 'strict'):
  22.         return codecs.charmap_decode(input, errors, decoding_map)
  23.  
  24.  
  25.  
  26. class StreamWriter(Codec, codecs.StreamWriter):
  27.     pass
  28.  
  29.  
  30. class StreamReader(Codec, codecs.StreamReader):
  31.     pass
  32.  
  33.  
  34. def getregentry():
  35.     return (Codec().encode, Codec().decode, StreamReader, StreamWriter)
  36.  
  37. decoding_map = decoding_map.copy()
  38. decoding_map.update({
  39.     160: None })
  40. encoding_map = codecs.make_encoding_map(decoding_map)
  41.